home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Amos / AMOSList-1297 / AMOSLIST / 000026_amos-request@svcs1.digex.net_Wed Dec 3 19:05:13 1997.msg < prev    next >
Text File  |  1998-06-24  |  3KB  |  65 lines

  1. Received: from svcs1.digex.net (svcs1.digex.net [204.91.197.224])
  2.     by mail4.access.digex.net (8.8.5/8.8.5) with ESMTP id TAA17713
  3.     for <mcox@access.digex.net>; Wed, 3 Dec 1997 19:05:07 -0500 (EST)
  4. Received: (from daemon@localhost)
  5.     by svcs1.digex.net (8.8.5/8.8.5) id OAA29474
  6.     for amos-out; Wed, 3 Dec 1997 14:28:34 -0500 (EST)
  7. Received: from mail3.access.digex.net (mail3.access.digex.net [205.197.247.4])
  8.     by svcs1.digex.net (8.8.5/8.8.5) with ESMTP id OAA29469
  9.     for <amos-list@svcs1.digex.net>; Wed, 3 Dec 1997 14:28:33 -0500 (EST)
  10. Received: from mago.agonet.it (mago.agonet.it [195.32.124.10])
  11.     by mail3.access.digex.net (8.8.5/8.8.5) with ESMTP id OAA24175
  12.     for <amos-list@access.digex.net>; Wed, 3 Dec 1997 14:28:29 -0500 (EST)
  13. Received: from agonet.it (ghizzo@p126067.agonet.it [195.32.126.67])
  14.     by mago.agonet.it (8.8.5/8.8.5) with SMTP id UAA16452
  15.     for <amos-list@access.digex.net>; Wed, 3 Dec 1997 20:25:05 +0100
  16. From: Pietro Ghizzoni <ghizzo@agonet.it>
  17. Reply-To: Pietro Ghizzoni <ghizzo@agonet.it>
  18. To: Amos-List <amos-list@access.digex.net>
  19. Date: Wed, 03 Dec 1997 20:21:19 +0100
  20. Message-ID: <yam7276.951.2018590712@mail.agonet.it>
  21. In-Reply-To: <00001199.eval@modusmedia.com>
  22. X-Mailer: YAM 1.3.5 - Amiga Mailer by Marcel Beck
  23. Organization: Dairymen Soft
  24. Subject: Re: GUI Problem
  25. MIME-Version: 1.0
  26. Content-Type: text/plain
  27. Status: O
  28. X-Status: 
  29.  
  30. On 01-Dic-97, Declan_Gorman@modusmedia.com wrote: GUI Problem
  31.  
  32. >     Basically what I want to do is display the slected item from the 
  33. >     listview in a text gadget.  It works fine only whenever I select the 
  34. >     first item in the listview it will not display it.  Every other item 
  35. >     is diplay without a problem.  The code is as follows......
  36. >     
  37. >     S_VCE$=Gui Read$(1,0)
  38. >     If Gui Read(1,0) the Gui Set 1,9,0,Varptr$(S_VCE$)
  39. >     
  40. >     Any ideas what is going wrong?
  41.  
  42.  
  43. the first item of a listview is the number 0.... and so the above 'IF' skip
  44. it! Just use:
  45.  
  46. S_VCE$=Gui Read$(1,0) : Gui Set 1,9,0,Varptr$(S_VCE$) 
  47.  
  48. -- 
  49.  
  50.  
  51. Bye!
  52.  
  53.  
  54.                                      !!!
  55.                                      o o
  56.    +-----------------------------oOO-(_)-OOo----------------------------+
  57.    |                                                                    |
  58.    |  Pietro Ghizzoni - Dairymen Soft              __  /// Amiga 12OO   |
  59.    |     E-Mail:  ghizzo@agonet.it                 \\\/// 'O3O  5OMhz   |
  60.    |            Team AMIGA                          \/// 1OMB - CD4x    |
  61.    |                                                                    |
  62.    | Amos Professional Team Coordinator               AMIGA RULEZ!!     |
  63.    |                                                                    |
  64.    +--------------------------------------------------------------------+
  65.